*{margin: 0px;padding: 0px;}
/* Zentrales Stylesheet */

/* CSS Fundament für alle Dateien */
body {
	background-color: #50A899;
}

/* Stylesheets für Flexbox */

.outer-wrap{/* Hauptcontainer Hintergrund */
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex;
	/* nach GitHub */	
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	/* nach GitHub */	
	/* -webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center; */
	
	/* width: auto; */
	border-radius: 1em;
	border: 2px solid #5C009F;
	max-width: 70em;
    margin: 2%;
	padding-top: 2%;
	
	background: linear-gradient(124deg, rgba(130, 171, 70, 1)34%, rgba(255, 220, 70, 0.8)73%);
	background: -moz-linear-gradient(124deg, rgba(130, 171, 70, 1)34%, rgba(255, 220, 70, 0.8)73%);
	background: -webkit-linear-gradient(124deg, rgba(130, 171, 70, 1)34%, rgba(255, 220, 70, 0.8)73%);
	background: -o-linear-gradient(124deg, rgba(130, 171, 70, 1)34%, rgba(255, 220, 70, 0.8)73%);
	
	box-shadow: inset 17px 17px 85px -9px #F2A305,12px 10px 39px 1px #0C240A;
	-webkit-box-shadow: inset 17px 17px 85px -9px #F2A305,12px 10px 39px 1px #0C240A;
	-moz-box-shadow: inset 17px 17px 85px -9px #F2A305,12px 10px 39px 1px #0C240A;
	-o-box-shadow: inset 17px 17px 85px -9px #F2A305,12px 10px 39px 1px #0C240A;
	}